home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCGUIA 114
/
PC Guia 114.iso
/
Software
/
Produtividade
/
Apache 2.0.52
/
apache_2.0.52-win32-x86-no_ssl.msi
/
Data.Cab
/
F48458_printenv.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl Script
|
2004-09-23
|
288 b
|
14 lines
#!c:/Perl/bin/Perl.exe
##
## printenv -- demo CGI program which just prints its environment
##
print "Content-type: text/plain\n\n";
foreach $var (sort(keys(%ENV))) {
$val = $ENV{$var};
$val =~ s|\n|\\n|g;
$val =~ s|"|\\"|g;
print "${var}=\"${val}\"\n";
}